home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / program / grindr.zip / GRINDER.EXE / DATA.Z / SampleApplet.java < prev    next >
Text File  |  1996-06-29  |  408b  |  16 lines

  1. //    SampleApplet.java     LPS 6/15/96
  2. //    This is a sample file that will create a new applet that displays
  3. //    the phrase "Hello Brave New World!" in a window.
  4.  
  5. package sample.applet;
  6.  
  7. import java.awt.Graphics;
  8.  
  9. public class SampleApplet extends java.applet.Applet {
  10.     public void init() {
  11.         resize(300,200);
  12.     }
  13.     public void paint(Graphics g) {
  14.         g.drawString("Hello Brave New World!", 50, 25);
  15.     }
  16. }